home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue24 / survive / FMPYMT.DFM / FMPYMT.txt
Encoding:
Text File  |  1997-06-23  |  4.2 KB  |  196 lines

  1. object frmPayment: TfrmPayment
  2.   Left = 225
  3.   Top = 154
  4.   Width = 483
  5.   Height = 377
  6.   BorderIcons = [biSystemMenu]
  7.   Caption = 'Payment'
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnDestroy = FormDestroy
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object grpOutstandingCredits: TGroupBox
  17.     Left = 8
  18.     Top = 6
  19.     Width = 460
  20.     Height = 147
  21.     Caption = ' Outstanding Credits '
  22.     TabOrder = 0
  23.     object grdCredits: TDBMultiGrid
  24.       Left = 6
  25.       Top = 16
  26.       Width = 320
  27.       Height = 120
  28.       DataSource = dsCreditsOut
  29.       Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgConfirmDelete, dgCancelOnExit]
  30.       TabOrder = 0
  31.       TitleFont.Color = clWindowText
  32.       TitleFont.Height = -11
  33.       TitleFont.Name = 'MS Sans Serif'
  34.       TitleFont.Style = []
  35.       DataField = 'CREDITNO'
  36.       OnSelected = grdCreditsSelected
  37.     end
  38.     object btnSelectAll: TButton
  39.       Left = 355
  40.       Top = 46
  41.       Width = 75
  42.       Height = 25
  43.       Caption = 'Select All'
  44.       TabOrder = 1
  45.       OnClick = btnSelectAllClick
  46.     end
  47.     object btnClearAll: TButton
  48.       Left = 355
  49.       Top = 75
  50.       Width = 75
  51.       Height = 25
  52.       Caption = 'Clear All'
  53.       TabOrder = 2
  54.       OnClick = btnClearAllClick
  55.     end
  56.   end
  57.   object grpPayment: TGroupBox
  58.     Left = 8
  59.     Top = 156
  60.     Width = 460
  61.     Height = 153
  62.     Caption = ' Payment '
  63.     TabOrder = 1
  64.     object grdPayment: TStringGrid
  65.       Left = 10
  66.       Top = 14
  67.       Width = 260
  68.       Height = 130
  69.       ColCount = 2
  70.       DefaultColWidth = 128
  71.       DefaultRowHeight = 20
  72.       RowCount = 8
  73.       Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing, goAlwaysShowEditor]
  74.       ScrollBars = ssVertical
  75.       TabOrder = 0
  76.       OnSetEditText = grdPaymentSetEditText
  77.       RowHeights = (
  78.         20
  79.         20
  80.         20
  81.         20
  82.         20
  83.         20
  84.         20
  85.         20)
  86.     end
  87.     object grpTotals: TGroupBox
  88.       Left = 281
  89.       Top = 9
  90.       Width = 171
  91.       Height = 96
  92.       Caption = ' Totals '
  93.       TabOrder = 1
  94.       object Label1: TLabel
  95.         Left = 8
  96.         Top = 17
  97.         Width = 65
  98.         Height = 13
  99.         Caption = 'Credits to Pay'
  100.       end
  101.       object Label2: TLabel
  102.         Left = 8
  103.         Top = 43
  104.         Width = 41
  105.         Height = 13
  106.         Caption = 'Payment'
  107.       end
  108.       object Label3: TLabel
  109.         Left = 8
  110.         Top = 69
  111.         Width = 62
  112.         Height = 13
  113.         Caption = 'Balance Due'
  114.       end
  115.       object edtTotalToPay: TEdit
  116.         Left = 91
  117.         Top = 13
  118.         Width = 70
  119.         Height = 22
  120.         Font.Color = clBlack
  121.         Font.Height = -11
  122.         Font.Name = 'Courier New'
  123.         Font.Style = []
  124.         MaxLength = 10
  125.         ParentColor = True
  126.         ParentFont = False
  127.         ReadOnly = True
  128.         TabOrder = 0
  129.       end
  130.       object edtTotalPaid: TEdit
  131.         Left = 91
  132.         Top = 39
  133.         Width = 70
  134.         Height = 22
  135.         Font.Color = clBlack
  136.         Font.Height = -11
  137.         Font.Name = 'Courier New'
  138.         Font.Style = []
  139.         MaxLength = 10
  140.         ParentColor = True
  141.         ParentFont = False
  142.         ReadOnly = True
  143.         TabOrder = 1
  144.       end
  145.       object edtBalanceDue: TEdit
  146.         Left = 91
  147.         Top = 65
  148.         Width = 70
  149.         Height = 22
  150.         Font.Color = clBlack
  151.         Font.Height = -11
  152.         Font.Name = 'Courier New'
  153.         Font.Style = []
  154.         MaxLength = 10
  155.         ParentColor = True
  156.         ParentFont = False
  157.         ReadOnly = True
  158.         TabOrder = 2
  159.       end
  160.     end
  161.     object btnAllocation: TButton
  162.       Left = 296
  163.       Top = 112
  164.       Width = 147
  165.       Height = 25
  166.       Caption = 'Allocate Payment'
  167.       TabOrder = 2
  168.       OnClick = btnAllocationClick
  169.     end
  170.   end
  171.   object btnPost: TButton
  172.     Left = 158
  173.     Top = 316
  174.     Width = 75
  175.     Height = 25
  176.     Caption = 'Post'
  177.     ModalResult = 1
  178.     TabOrder = 2
  179.     OnClick = btnPostClick
  180.   end
  181.   object btnCancel: TButton
  182.     Left = 245
  183.     Top = 316
  184.     Width = 75
  185.     Height = 25
  186.     Caption = 'Cancel'
  187.     TabOrder = 3
  188.     OnClick = btnCancelClick
  189.   end
  190.   object dsCreditsOut: TDataSource
  191.     DataSet = dmDataModule.qryCreditsOutByCustomer
  192.     Left = 19
  193.     Top = 72
  194.   end
  195. end
  196.